home *** CD-ROM | disk | FTP | other *** search
- print "1..10\n";
-
- use strict;
- use URI ();
- my $u = URI->new("", "http");
- my @q;
-
- $u->query_form(a => 3, b => 4);
-
- print "not " unless $u eq "?a=3&b=4";
- print "ok 1\n";
-
- $u->query_form(a => undef);
- print "not " unless $u eq "?a=";
- print "ok 2\n";
-
- $u->query_form("a=+& " => " =&+#");
- print "not " unless $u eq "?a%3D%2B%26+=+%3D%26%2B%23";
- print "ok 3\n";
-
- @q = $u->query_form;
- print "not " unless join(":", @q) eq "a=+& : =&+#";
- print "ok 4\n";
-
- @q = $u->query_keywords;
- print "not " if @q;
- print "ok 5\n";
-
- $u->query_keywords("a", "b");
- print "not " unless $u eq "?a+b";
- print "ok 6\n";
-
- $u->query_keywords(" ", "+", "=");
- print "not " unless $u eq "?%20+%2B+%3D";
- print "ok 7\n";
-
- @q = $u->query_keywords;
- print "not " unless join(":", @q) eq " :+:=";
- print "ok 8\n";
-
- @q = $u->query_form;
- print "not " if @q;
- print "ok 9\n";
-
- $u->query(" +?=#");
- print "not " unless $u eq "?%20+?=%23";
- print "ok 10\n";
-
- __END__
- # Some debugging while writing new tests
- print "\@q='", join(":", @q), "'\n";
- print "\$u='$u'\n";
-
-